/* Skill Development Hero Section */
.skill-hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #fff6fa 0%, #fff3e6 100%);
    padding: 60px 0 40px 0;
    min-height: 60vh;
}
.skill-hero-content {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 30px 40px 30px 60px;
}
.skill-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.1;
}
.skill-hero-title .gradient {
    background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.skill-hero-subtitle {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 32px;
    line-height: 1.6;
}
.skill-hero-btn-row {
    display: flex;
    gap: 20px;
    margin-bottom: 38px;
}
.skill-btn-primary {
    background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
    color: #fff;
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255, 78, 142, 0.08);
    transition:
        background 0.2s,
        box-shadow 0.2s;
    border: none;
    outline: none;
}
.skill-btn-primary:hover {
    background: linear-gradient(90deg, #ff9a44 30%, #ff4e8e 100%);
    box-shadow: 0 6px 24px rgba(255, 78, 142, 0.15);
}
.skill-btn-outline {
    background: #fff;
    color: #ff4e8e;
    border: 2px solid #ff4e8e;
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s;
}
.skill-btn-outline:hover {
    background: #ff4e8e;
    color: #fff;
}
.skill-hero-image {
    flex: 1 1 320px;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px 30px 0;
}
.skill-hero-img-frame {
    display: inline-block;
    border-radius: 36px;
    background: linear-gradient(90deg, #ff4e8e 10%, #ff9a44 90%);
    padding: 10px;
    transform: rotate(4deg);
    box-shadow: 0 8px 32px rgba(255, 78, 142, 0.1);
}
.skill-hero-img {
    width: 340px;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/* Features List for Mission Section */
.skill-features-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
}
.skill-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.08rem;
}
.feature-icon {
    font-size: 1.5em;
    margin-top: 2px;
}
.skill-features-list strong {
    font-weight: 700;
    margin-right: 6px;
}
.skill-features-list span {
    color: #555;
    font-size: 1em;
}

/* Skill Stats Section */
.skill-stats-section {
    background: #fff;
    padding: 2.5em 0 2em 0;
    text-align: center;
}
.skill-stats-row {
    display: flex;
    justify-content: center;
    gap: 3em;
    flex-wrap: wrap;
}
.skill-stat-card {
    background: linear-gradient(135deg, #fff6fa 0%, #f9f6ff 100%);
    border-radius: 50px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    padding: 2em 2.5em 1.5em 2.5em;
    text-align: center;
    min-width: 180px;
    margin-bottom: 1em;
    transition: box-shadow 0.2s;
}
.skill-stat-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
}
.skill-stat-icon {
    font-size: 2.2em;
    margin-bottom: 0.5em;
    color: #ff4e8e;
}
.skill-stat-number {
    font-size: 2em;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.2em;
}
.skill-stat-label {
    font-size: 1.1em;
    color: #666;
}

@media (max-width: 1100px) {
    .skill-hero-section,
    .skill-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .skill-hero-img {
        max-width: 98vw;
        height: auto;
    }
    .skill-stat-card {
        min-width: 90vw;
        max-width: 350px;
    }
}
@media (max-width: 700px) {
    .skill-hero-title {
        font-size: 1.4em;
    }
    .skill-hero-img-frame {
        border-radius: 18px;
        padding: 4px;
    }
    .skill-hero-img {
        border-radius: 10px;
    }
}

/* Our Programs Section */
.programs-section {
    padding: 70px 0 40px 0;
    background: #fffaf7;
    text-align: center;
}
.programs-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}
.programs-subtitle {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 38px;
}
.programs-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.program-card {
    background: linear-gradient(135deg, #fff6fa 0%, #fff9f3 100%);
    border: 1.5px solid #ffe3d2;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.06);
    padding: 36px 32px 28px 32px;
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 300px;
    text-align: left;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.program-card:hover {
    box-shadow: 0 8px 32px 0 rgba(255, 78, 142, 0.13);
    transform: translateY(-6px) scale(1.03);
}
.program-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    /* --- Program Card Styles (from lines 237-276) --- */
}
.program-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e8e 0%, #ff9a44 100%);
    color: #fff;
    font-size: 2rem;
    margin-bottom: 18px;
}
.program-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.program-card p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 14px;
}
.program-card ul {
    padding-left: 18px;
    margin: 0;
    color: #222;
    font-size: 1.04rem;
}
.program-card ul li {
    margin-bottom: 4px;
}
@media (max-width: 1100px) {
    .programs-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .program-card {
        max-width: 98vw;
        min-width: 0;
    }
}
.contact-section-custom {
    background: #fff;
    padding: 60px 0 60px 0;
}
.contact-section-header {
    text-align: center;
    margin-bottom: 2.5em;
}
.contact-section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.2em;
    color: #222;
}
.contact-section-subtitle {
    font-size: 1.15rem;
    color: #444;
}
.contact-section-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
}
.contact-info-card {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.1);
    padding: 36px 32px 28px 32px;
    margin-bottom: 18px;
}
.contact-info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}
.contact-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e8e 0%, #ff9a44 100%);
    color: #fff;
    font-size: 1.5rem;
}
.contact-info-label {
    font-weight: 600;
    color: #222;
}
.contact-info-value {
    color: #444;
    font-size: 1.05rem;
}
.contact-form-card {
    flex: 1 1 380px;
    min-width: 280px;
    max-width: 480px;
    background: linear-gradient(120deg, #fff6fa 0%, #fff3e6 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(255, 78, 142, 0.1);
    padding: 36px 32px 28px 32px;
    margin-bottom: 18px;
}
.contact-form-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    font-weight: 600;
    color: #222;
    display: block;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid #ffe3d2;
    font-size: 1em;
    margin-bottom: 0;
    font-family: inherit;
    resize: none;
}
.contact-form-card button[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #ff4e8e 30%, #ff9a44 100%);
    color: #fff;
    padding: 14px 0;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form-card button[type="submit"]:hover {
    background: linear-gradient(90deg, #ff9a44 30%, #ff4e8e 100%);
}
@media (max-width: 1100px) {
    .contact-section-flex {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }
    .contact-info-card,
    .contact-form-card {
        max-width: 98vw;
        min-width: 0;
    }
}

.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #181c24;
}
.about-title .about-gradient {
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-card {
    background: linear-gradient(120deg, #fff0fa 0%, #fff7f0 100%);
    border-radius: 1.3rem;
    box-shadow: 0 2px 12px 0 rgba(44, 44, 44, 0.04);
    padding: 2.2rem 2rem 1.5rem 2rem;
    min-width: 300px;
    max-width: 350px;
    flex: 1 1 300px;
    text-align: center;
    margin-bottom: 1.5rem;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.about-card:hover {
    box-shadow:
        0 8px 32px 0 rgba(255, 122, 47, 0.13),
        0 4px 16px 0 rgba(215, 38, 167, 0.13);
    transform: translateY(-4px) scale(1.03);
}
.about-icon {
    font-size: 2.7rem;
    margin-bottom: 1.1rem;
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.about-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    color: #181c24;
}
.about-card-desc {
    color: #444;
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .about-cards {
        flex-direction: column;
        align-items: center;
    }
    .about-card {
        min-width: 220px;
        max-width: 100%;
    }
}
.membership-btn {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 2.5rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s,
        border 0.2s;
    margin-top: 0.2rem;
}
.membership-btn-primary {
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px 0 rgba(44, 44, 44, 0.08);
    position: relative;
}
.membership-btn-primary::after {
    content: "\2192";
    margin-left: 0.7rem;
    font-size: 1.2rem;
    vertical-align: middle;
}
.membership-btn-primary:hover {
    background: linear-gradient(90deg, #ff7a2f 0%, #ff5ca7 100%);
    color: #fff;
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(120deg, #fff0fa 0%, #fff7f0 100%);
    padding: 4.5rem 0 2.5rem 0;
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 300px;
    max-width: 400px;
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}
.contact-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #181c24;
}
.contact-gradient {
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.contact-desc {
    color: #444;
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1.2rem;
}
.contact-icon {
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-right: 0.5rem;
}
.contact-list strong {
    font-size: 1.15rem;
    color: #181c24;
}
.contact-list a {
    color: #444;
    text-decoration: none;
}
.contact-social {
    margin-top: 1.5rem;
}
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff5ca7 0%, #ff7a2f 100%);
    color: #fff;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    transition:
        background 0.2s,
        color 0.2s;
}
.contact-social a:hover {
    background: #fff;
    color: #ff5ca7;
    border: 1.5px solid #ff5ca7;
}
.contact-form-box {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 500px;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 2px 24px 0 rgba(44, 44, 44, 0.08);
    padding: 2.5rem 2rem 2.2rem 2rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #181c24;
}
.contact-form label {
    font-size: 1.05rem;
    color: #181c24;
    margin-bottom: 0.3rem;
    margin-top: 0.7rem;
}
.contact-form input,
.contact-form textarea {
    border: 1.5px solid #e0b3d6;
    border-radius: 0.7rem;
    padding: 0.9rem 1.1rem;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    outline: none;
    transition: border 0.2s;
    background: #faf7fa;
    color: #181c24;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #ff5ca7;
}
.contact-form button {
    margin-top: 1.2rem;
}
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2.2rem;
    }
    .contact-form-box,
    .contact-info {
        max-width: 100%;
        min-width: 0;
        padding: 1.2rem 0.7rem;
    }
}
